ESP32馬達控制需額外include ESP32Servo函式庫
可達參考 https://shop.mirotek.com.tw/iot/esp32-start-32/ 伺服馬達結構
模擬器:
https://wokwi.com/projects/343560745491890770
#include <ESP32Servo.h> //請先安裝ESP32Servo程式庫
Servo myServo; //建立一個伺服馬達物件
void setup(){
//SG90的脈衝寬度500~2400
myServo.attach(4, 500, 2400);
}
void loop(){
myServo.write(90);//轉到90度
delay(1000);
myServo.write(180);//轉到180度
delay(1000);
myServo.write(90);//轉到90度
delay(1000);
myServo.write(0);//轉到0度(原點)
delay(5000);
}